home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / httpd / conf / srm.conf < prev   
Text File  |  1995-05-09  |  3KB  |  86 lines

  1. # With this document, you define the name space that users see of your http
  2. # server.
  3.  
  4. # DocumentRoot: The directory out of which you will serve your
  5. # documents. By default, all requests are taken from this directory, but
  6. # symbolic links and aliases may be used to point to other locations.
  7.  
  8. DocumentRoot /usr/local/etc/httpd/htdocs
  9.  
  10. # UserDir: The name of the directory which is appended onto a user's home
  11. # directory if a ~user request is recieved.
  12.  
  13. UserDir public_html
  14.  
  15. # DirectoryIndex: Name of the file to use as a pre-written HTML
  16. # directory index
  17.  
  18. DirectoryIndex index.html
  19.  
  20. # FancyIndexing is whether you want fancy directory indexing or standard
  21.  
  22. FancyIndexing on
  23.  
  24. # AddIcon tells the server which icon to show for different files or filename
  25. # extensions
  26.  
  27. AddIcon /icons/text.xbm .html .txt
  28. AddIcon /icons/image.xbm .gif .jpg .xbm .tiff
  29. AddIcon /icons/sound.xbm .au
  30. AddIcon /icons/movie.xbm .mpg
  31. AddIcon /icons/binary.xbm .bin
  32. AddIcon /icons/back.xbm ..
  33. AddIcon /icons/menu.xbm **DIRECTORY**
  34.  
  35. # DefaultIcon is which icon to show for files which do not have an icon
  36. # explicitly set.
  37.  
  38. DefaultIcon /icons/unknown.xbm
  39.  
  40. # AddDescription allows you to place a short description after a file in
  41. # server-generated indexes.
  42. # Format: AddDescription "description" filename
  43.  
  44. # ReadmeName is the name of the README file the server will look for by
  45. # default. Format: ReadmeName name
  46. #
  47. # The server will first look for name.html, include it if found, and it will
  48. # then look for name and include it as plaintext if found.
  49.  
  50. ReadmeName README
  51.  
  52. # IndexIgnore is a set of filenames which directory indexing should ignore
  53. # Format: IndexIgnore name1 name2...
  54.  
  55. IndexIgnore /.htaccess ~ #
  56.  
  57. # AccessFileName: The name of the file to look for in each directory
  58. # for access control information.
  59.  
  60. AccessFileName .htaccess
  61.  
  62. # DefaultType is the default MIME type for documents which the server
  63. # cannot find the type of from filename extensions.
  64.  
  65. DefaultType text/plain
  66.  
  67. # AddType allows you to tweak mime.types without actually editing it, or to
  68. # make certain files to be certain types.
  69. # Format: AddType type/subtype ext1
  70.  
  71. # Redirect allows you to tell clients about documents which used to exist in
  72. # your server's namespace, but do not anymore. This allows you to tell the
  73. # clients where to look for the relocated document.
  74. # Format: Redirect fakename url
  75.  
  76.  
  77. # Aliases: Add here as many aliases as you need, up to 20. The format is 
  78. # Alias fakename realname
  79.  
  80. Alias /icons/ /usr/local/etc/httpd/icons/
  81.  
  82. # ScriptAlias: This controls which directories contain server scripts.
  83. # Format: ScriptAlias fakename realname
  84.  
  85. ScriptAlias /cgi-bin/ /usr/local/etc/httpd/cgi-bin/
  86.